home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / libsrc~1.z / libsrc~1 / rewind.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-28  |  194 b   |  13 lines

  1. #include <stdio.h>
  2. #include <sys/types.h>
  3. #include <unistd.h>
  4.  
  5. void rewind(fp)
  6. register FILE *fp;
  7. {
  8.     
  9.     fflush(fp);
  10.     lseek(fp->_file, 0L, SEEK_SET);
  11.     fp->_flag &= ~(_IOEOF|_IOERR);
  12. }
  13.